home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / v7n10.arc / PCMAG.H < prev    next >
C/C++ Source or Header  |  1988-04-30  |  257b  |  21 lines

  1. /* PcMag.H - Standard definitions for PC magazine C programs  */
  2.  
  3. #ifndef TRUE
  4. #define TRUE 1
  5. #endif
  6.  
  7. #ifndef FALSE
  8. #define FALSE 0
  9. #endif
  10.  
  11. #ifndef NULL
  12. #define NULL 0
  13. #endif
  14.  
  15. #ifndef ERROR
  16. #define ERROR -1
  17. #endif
  18.  
  19. /* End of PcMag.h */
  20.  
  21.